home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 7: Sunsite / Linux Cubed Series 7 - Sunsite Vol 1.iso / system / printing / rlpr-1.000 / rlpr-1 / rlpr-1.13 / rlpr.h < prev    next >
C/C++ Source or Header  |  1996-06-30  |  662b  |  22 lines

  1. /* filename: rlpr.h
  2.  * project: rlpr
  3.  * author: meem  --  meem@sherilyn.wustl.edu
  4.  * version: $Id: rlpr.h,v 1.2 1996/04/28 21:49:04 meem Exp $
  5.  * content: general definitions/declarations for rlpr.c
  6.  *
  7.  * Time-stamp: <1996/04/20 23:06 -- meem@sherilyn.wustl.edu>
  8.  */
  9.  
  10. #ifndef RLPR_H
  11. #define RLPR_H
  12.  
  13. /* function prototypes */
  14.  
  15. void cf_add(char op, char *string, int cfd);   /* add a line to the ctl file  */
  16. void cf_header(int cfd, char *filename);
  17. void init_options(void);    /* initialize the print struct */
  18. void tidy_options(void);    /* tidy up once all info known */
  19. void parse_args(int argc, char *argv[]); /* parse command line options  */
  20.  
  21. #endif /* RLPR_H */
  22.